home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Snippets / IC++ 1.0b1 / Read Me < prev   
Encoding:
Text File  |  1995-11-29  |  1.0 KB  |  44 lines  |  [TEXT/ttxt]

  1. IC++
  2. Version 1.0b1
  3. 11/29/1995
  4. by Dan Crevier
  5. <mailto:dan@rhino.harvard.edu>
  6.  
  7. Introduction
  8.  
  9.      IC++ is a C++ class for working with Internet Config.  This is a beta release.  I've tested it for what I've needed to do with Internet Config, but there are there are probably other things you will want it to do.
  10.      IC++ is free to use, but I'd appreciate any bug fixes or additional functionality.
  11.  
  12. Usage
  13.  
  14.      The way I use it is to define a global CInternetConfig, as follows:
  15.  
  16. CInternetConfig gInternetConfig(mySig);
  17.  
  18. ...
  19.  
  20. if (gInternetConfig.ICInstalled())
  21. {
  22.      gInternetConfig.GetEmailAddress(emailAddress);
  23.      gInternetConfig.DoURL("\p<mailto:dan@rhino.harvard.edu>");
  24.  
  25.      if (gInternetConfig.StartMapIteration())
  26.      {
  27.           while(gInternetConfig.NextMapEntry(&entry))
  28.           {
  29.                 // do something
  30.           }
  31.  
  32.           gInternetConfig.FinishMapIteration();
  33.      }
  34. }
  35.  
  36. Release Notes
  37.  
  38. Version 1.0b1 -- 11/29/95
  39.      • First public release.
  40.  
  41. Dan Crevier
  42. <mailto:dan@rhino.harvard.edu>
  43. <http://rhino.harvard.edu/dan/home.html>
  44.